From 692d8e2aac238dc3bec17ea959a50206f3a886db Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 16 Jan 2009 00:43:27 +0000 Subject: [PATCH] (sentence-end): Accept non-break space. --- lisp/textmodes/paragraphs.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index 1d4a2746f62..ca141c1b671 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el @@ -183,14 +183,15 @@ end of a sentence, the ending period, question mark, or exclamation point must be followed by two spaces, with perhaps some closing delimiters in between. See Info node `(elisp)Standard Regexps'." (or sentence-end - (concat (if sentence-end-without-period "\\w \\|") + ;; We accept non-break space along with space. + (concat (if sentence-end-without-period "\\w[ \u00a0][ \u00a0]\\|") "\\(" sentence-end-base (if sentence-end-double-space - "\\($\\| $\\|\t\\| \\)" "\\($\\|[\t ]\\)") + "\\($\\|[ \u00a0]$\\|\t\\|[ \u00a0][ \u00a0]\\)" "\\($\\|[\t \u00a0]\\)") "\\|[" sentence-end-without-space "]+" "\\)" - "[ \t\n]*"))) + "[ \u00a0\t\n]*"))) (defcustom page-delimiter "^\014" "Regexp describing line-beginnings that separate pages." -- 2.30.2